GET api/travel/day/traveldate/applicable/{seasonId}?personId={personId}&personIds[0]={personIds[0]}&personIds[1]={personIds[1]}

Retrieves travel dates applicable to specific person(s) within a season. Filters travel dates based on person eligibility and assignment criteria.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
seasonId

The unique identifier of the season to filter travel dates.

integer

Required

personId

Optional. Single person identifier to filter applicable travel dates. Query string parameter.

integer

None.

personIds

Optional. Array of person identifiers to filter applicable travel dates. Query string parameter.

Collection of integer

None.

Body Parameters

None.

Response Information

Resource Description

Returns HTTP 200 (OK) with a dictionary mapping travel date IDs to lists of person IDs

Dictionary of integer [key] and Collection of integer [value]

Response Formats

application/json, text/json

Sample:
{
  "1": [
    1,
    2
  ],
  "2": [
    1,
    2
  ]
}

application/javascript

Sample:
{"1":[1,2],"2":[1,2]}